From: Jim Blandy Date: Mon, 10 May 1993 23:58:36 +0000 (+0000) Subject: Use pushdef and popdef, instead of saving the macro's value in a X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96321 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=942990d1fb356401fe0e6afbde2d047df44ff1b8;p=emacs.git Use pushdef and popdef, instead of saving the macro's value in a variable. --- diff --git a/configure1.in b/configure1.in index a75861e593a..4ea389dd675 100755 --- a/configure1.in +++ b/configure1.in @@ -998,11 +998,10 @@ dnl so (as far as I can tell) there's no way to compute the value dnl the CPP macro should receive. We cripple that quoting for a dnl bit, invoke AC_DEFINE, and then uncripple it. -define([hold_ac_define_sedquote], defn([AC_DEFINE_SEDQUOTE])) -define([AC_DEFINE_SEDQUOTE],[$1]) +pushdef([AC_DEFINE_SEDQUOTE],[$1]) AC_DEFINE(config_machfile, "\"${machfile}\"") AC_DEFINE(config_opsysfile, "\"${opsysfile}\"") -define([AC_DEFINE_SEDQUOTE],hold_ac_define_sedquote) +popdef([AC_DEFINE_SEDQUOTE]) AC_DEFINE(LD_SWITCH_X_SITE, ${LD_SWITCH_X_SITE}) AC_DEFINE(C_SWITCH_X_SITE, ${C_SWITCH_X_SITE})